From: Stefan Kangas Date: Sat, 22 Feb 2025 17:15:37 +0000 (+0100) Subject: Improve wording of lsh docstring X-Git-Tag: archive/raspbian/1%30.2+1-2+rpi1^2~2^2~24^2~278 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=e15dcb2db5c40e90ea2a21391af5addb9e778779;p=emacs.git Improve wording of lsh docstring * lisp/subr.el (lsh): Improve wording of docstring. --- diff --git a/lisp/subr.el b/lisp/subr.el index 7aca542dab4..7552378a781 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -571,10 +571,10 @@ If COUNT is negative, shifting is actually to the right. In this case, if VALUE is a negative fixnum treat it as unsigned, i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it. -Most uses of this function turn out to be mistakes. We recommend -to use `ash' instead, unless COUNT could ever be negative, and -if, when COUNT is negative, your program really needs the special -treatment of negative COUNT provided by this function." +Most uses of this function turn out to be mistakes. We recommend using +`ash' instead, unless COUNT could ever be negative, in which case your +program should only use this function if it specifically requires the +special handling of negative COUNT." (declare (ftype (function (integer integer) integer)) (compiler-macro (lambda (form)